home *** CD-ROM | disk | FTP | other *** search
-
- (set sdir (pathonly @icon))
-
- (message
- "\n\n\n\nThis is install script for MusicBase ver.1.75\n01.07.99"
- )
-
- (set ID_dest (askdir
- (prompt " Where should MusicBase be installed? (drawer called MusicBase will be created)")
- (help "Select a drawer where you want to install MusicBase")
- (default @default-dest)
- )
- )
-
- (set @default-dest ID_dest)
- (makedir (tackon ID_dest "MusicBase"))
- (set ID_dest (tackon ID_dest "MusicBase"))
- (set @default-dest ID_dest)
-
- (working ("Copying MusicBase"))
- (copyfiles
- (source (tackon sdir "English") (infos))
- (dest ID_dest)
- (all)
- (help @copyfiles-help)
- )
-
- (working ("Copying readme file"))
- (copyfiles
- (source (tackon sdir "MusicBase.readme"))
- (dest ID_dest)
- (help @copyfiles-help)
- )
-
- (working ("Copying menu file"))
- (copyfiles
- (source (tackon sdir "Menu.guide"))
- (dest ID_dest)
- (help @copyfiles-help)
- )
-
- (working ("Copying author picture file"))
- (copyfiles
- (source (tackon sdir "That'sMe!"))
- (dest ID_dest)
- (help @copyfiles-help)
- )
-
- (makedir (tackon ID_dest "Data"))
- (delete ("Data.info"))
-
- (set ID_dest (tackon ID_dest "Data"))
-
- (working ("Copying data text files"))
- (copyfiles
- (source (tackon sdir "Data"))
- (dest ID_dest)
- (all)
- (help @copyfiles-help)
- )
-
- (set ID_dest (tackon ID_dest "//"))
- (working ("Copying info file"))
- (copyfiles
- (source (tackon sdir "Data/MusicBase.info"))
- (dest ID_dest)
- (help @copyfiles-help)
- )
-
- (exit
- "\n \n \n \nHave fun with MusicBase!\nCreate with me this guide!\nSend me some music texts!"
- (quiet)
- )
-